博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring Cache + Redis 开发数据字典以及自定义标签
阅读量:5340 次
发布时间:2019-06-15

本文共 8978 字,大约阅读时间需要 29 分钟。

一、数据库表结构

1、  分类表:dict_type

       

2、  子项表:dict_entry

 

二、页面维护功能示意图:

1、  分类管理 点击子项管理进入子项管理页面

    

2、子项管理

    

三、数据字典添加到缓存:

数据字典为了读取效率高效,减少与数据库的交互,通常会把数据字典所有数据添加到缓存当中,如果是一台服务器部署,只需放到本机中就可以,如果需要部署到多台服务器分布式部署的话需要把数据字典同步到Redis服务器中。

1、  springboot 在dictTypeService中把数据字典放到本机缓存中

对数据字典进行增删改查时需要调用refreshDictCache()方法来刷新缓存,保证缓存中数据为最新数据

2、  如果使用springboot + Redis做缓存的使用的方法,在dictTypeService中把数据字典放到Redis服务器中

@Cacheable(value="dictEntry", key="T(String).valueOf('dictEntryMap')")

使用此注解调用此方法时,系统会先从Redis服务器获取数据字典,如果取不到数据,系统会再去数据库读取。

@CacheEvict(value="dictEntry", key="T(String).valueOf('dictTypeNameMap')")

方法使用此注解,对数据字典进行增删改查时,系统会自动同步到Redis服务器,保证数据库数据与redis数据保持一致。

三、把数据字典做成自定义标签

1、  创建辅助类(自定义标签调用)

1 package com.hydwltech.iems.epum.common.utils;  2   3 import java.util.ArrayList;  4 import java.util.List;  5   6 import org.apache.commons.lang.StringUtils;  7   8 import com.hydwltech.iems.epum.entity.dict.DictEntryOV;  9 import com.hydwltech.iems.epum.service.dict.DictTypeService; 10  11 /** 12  * 数据字典工具类 13  **/ 14 public class DictUtil { 15     private static DictTypeService getDictTypeService() { 16         return SpringWebContextUtil.getApplicationContext().getBean(DictTypeService.class); 17     } 18  19     /** 20      * 根据类型编码获取子项列表 21      *  22      * @param dictTypeCode 类型编码 23      * @return List<{
@link DictEntryOV}}> 子项数据对象 24 */ 25 @SuppressWarnings("unchecked") 26 public static List
getDictEntryList(String dictTypeCode) { 27 return (List
) getDictTypeService().getDictEntryMap().get(dictTypeCode); 28 } 29 30 /** 31 * 根据类型编码和子项编码获得子项名称 32 * 33 * @param dictTypeCode 类型编码 34 * @param dictEntryCode 子项编码 35 * @return String 子项名称 36 */ 37 public static String getDictEntryName(String dictTypeCode, String dictEntryCode) { 38 if (StringUtils.isBlank(dictTypeCode)) { 39 return null; 40 } 41 if (StringUtils.isBlank(dictEntryCode)) { 42 return null; 43 } 44 List
ovlist = (List
) getDictTypeService().getDictEntryMap().get(dictTypeCode); 45 String entryCode = null; 46 if (isInteger(dictEntryCode)) { 47 List
nameMapKeys = new ArrayList
(); 48 for (DictEntryOV dictOv : ovlist) { 49 String[] names = dictOv.getDictEntryCode().split(","); 50 boolean namesIsInt = true; 51 for (int i = 0; i < names.length; i++) { 52 if (!isInteger(names[i])) { 53 namesIsInt = false; 54 break; 55 } 56 } 57 if (namesIsInt) { 58 nameMapKeys.add(dictOv.getDictEntryCode()); 59 } 60 } 61 62 for (String parm : nameMapKeys) { 63 if (parm.split(",").length == 1) { 64 int parm1 = Integer.parseInt(parm.split(",")[0]); 65 if (Integer.parseInt(dictEntryCode) == parm1) { 66 entryCode = parm; 67 } 68 } else if (parm.split(",").length == 2) { 69 int parm1 = Integer.parseInt(parm.split(",")[0]); 70 int parm2 = Integer.parseInt(parm.split(",")[1]); 71 if (Integer.parseInt(dictEntryCode) >= parm1 && Integer.parseInt(dictEntryCode) <= parm2) { 72 entryCode = parm; 73 } 74 } 75 } 76 } else { 77 entryCode = dictEntryCode; 78 } 79 80 String entryName = null; 81 if (StringUtils.isNotBlank(entryCode)) { 82 for (DictEntryOV dictEntryOV : ovlist) { 83 if (entryCode.equals(dictEntryOV.getDictEntryCode())) { 84 entryName = dictEntryOV.getDictEntryName(); 85 } 86 } 87 } 88 89 return entryName; 90 } 91 92 /** 93 * 根据类型编码和子项编码获得子项对象 94 * 95 * @param dictTypeCode 类型编码 96 * @param dictEntryCode 子项编码 97 * @return DictEntryOV 子项名称 98 */ 99 public static DictEntryOV getDictEntry(String dictTypeCode, String dictEntryCode) {100 if (StringUtils.isBlank(dictTypeCode)) {101 return null;102 }103 if (StringUtils.isBlank(dictEntryCode)) {104 return null;105 }106 List
ovlist = (List
) getDictTypeService().getDictEntryMap().get(dictTypeCode);107 DictEntryOV entryOv = null;108 for (DictEntryOV dictEntryOV : ovlist) {109 if (dictEntryCode.equals(dictEntryOV.getDictEntryCode())) {110 entryOv = dictEntryOV;111 }112 }113 return entryOv;114 }115 116 /**117 * 根据类型编码和子项编码获得子项名称118 * 119 * @param dictTypeCodeAndEntryCode 类型编码和子项编码合成字符串两个变量已逗号隔开120 * @return String 子项名称121 */122 public static String getDictEntryNameByCodes(String dictTypeCodeAndEntryCode) {123 if (StringUtils.isBlank(dictTypeCodeAndEntryCode)) {124 return null;125 }126 String[] params = dictTypeCodeAndEntryCode.split(",");127 String dictTypeCode = params[0];128 String dictEntryCode = params[1];129 List
ovlist = (List
) getDictTypeService().getDictEntryMap().get(dictTypeCode);130 String entryName = null;131 for (DictEntryOV dictEntryOV : ovlist) {132 if (dictEntryCode.equals(dictEntryOV.getDictEntryCode())) {133 entryName = dictEntryOV.getDictEntryName();134 }135 }136 return entryName;137 }138 139 /**140 * 根据类型编码获得类型名称141 * 142 * @param dictTypeCode 类型编码143 * @return String 子项名称144 */145 public static String getDictTypeName(String dictTypeCode) {146 if (StringUtils.isBlank(dictTypeCode)) {147 return null;148 }149 String type = (String) getDictTypeService().getDictTypeNameMap().get(dictTypeCode);150 return type;151 152 }153 154 /**155 * 根据类型编码和子项名称获得子项类型编码156 * 157 * @param dictTypeCode 类型编码158 * @param dictEntryName 子项名称159 * @return String 子项编码160 */161 public static String getDictEntryCodeByEntryName(String dictTypeCode, String dictEntryName) {162 if (StringUtils.isBlank(dictTypeCode)) {163 return null;164 }165 if (StringUtils.isBlank(dictEntryName)) {166 return null;167 }168 List
ovlist = (List
) getDictTypeService().getDictEntryMap().get(dictTypeCode);169 String entryCode = null;170 for (DictEntryOV ov : ovlist) {171 if (dictEntryName.equals(ov.getDictEntryName())) {172 entryCode = ov.getDictEntryCode();173 }174 }175 return entryCode;176 }177 178 /** 验证是否是整数 */179 private static boolean isInteger(String param) {180 try {181 Integer.valueOf(param);182 return true;183 } catch (Exception e) {184 // TODO: handle exception185 }186 return false;187 }188 }

2、  自定义JSTL标签类

   (1)需要定义几个标签,就写几个独立的标签类

  (2)定义标签类,在页面输出下拉菜单数据

1 package com.hydwltech.iems.epum.common.utils.tag; 2  3 import java.util.List; 4  5 import javax.servlet.jsp.JspException; 6 import javax.servlet.jsp.tagext.TagSupport; 7  8 import com.hydwltech.iems.epum.common.utils.DictUtil; 9 import com.hydwltech.iems.epum.entity.dict.DictEntryOV;10 11 public class ValueDictEntryListUtil extends TagSupport{12 13     /**14      * 15      */16     private static final long serialVersionUID = 1L;17     18     private String var;19 20     @Override21     public int doStartTag() throws JspException {22         try {23             StringBuffer strBuffer = new StringBuffer();24             List
ovList = DictUtil.getDictEntryList(var);25 for (int i = 0; i < ovList.size(); i++) {26 strBuffer.append("
  • ");27 strBuffer.append("" + ovList.get(i).getDictEntryName() + "");28 strBuffer.append("
  • ");29 }30 pageContext.getOut().print(strBuffer.toString());31 } catch (Exception e) {32 // TODO: handle exception33 }34 return EVAL_BODY_INCLUDE;35 }36 37 38 public String getVar() {39 return var;40 }41 42 public void setVar(String var) {43 this.var = var;44 }45 }

    (3)、创建tld文件

          在WEB-INF下创建tld文件 dict.tld

    1 
    2 4
    5
    1.0
    6
    1.2
    7
    dict
    8
    14
    15
    16
    entry
    17
    com.hydwltech.iems.epum.common.utils.tag.ValueDictEntryNameUtil
    18
    JSP
    19
    20
    typeCode
    21
    true
    22
    23
    24
    entryCode
    25
    true
    26
    27
    28 29
    30
    type
    31
    com.hydwltech.iems.epum.common.utils.tag.ValueDictTypeNameUtil
    32
    JSP
    33
    34
    var
    35
    true
    36
    37
    38 39
    40
    select
    41
    com.hydwltech.iems.epum.common.utils.tag.ValueDictEntryListUtil
    42
    JSP
    43
    44
    var
    45
    true
    46
    47
    48

    (4)、JSP页面调用标签

          A、导入自定义标签

           <%@ taglib prefix="dict" uri="/WEB-INF/tag/dict.tld"%>

          

        B、下拉菜单调用此标签

           <dict:select var="equipEablePatrol"/>

     

    效果如下图:

    除了下拉菜单标签,还可以根据自己的需求开发其他自定义标签。

    四、相关技术链接

          关于自定义标签转自:

          关于Springboot  + cacheable + Redis转自:

    转载于:https://www.cnblogs.com/wm-dv/p/11155588.html

    你可能感兴趣的文章
    java中遍历属性字段及值(常见方法)
    查看>>
    YUI3自动加载树实现
    查看>>
    like tp
    查看>>
    kettle导数到user_用于left join_20160928
    查看>>
    较快的maven的settings.xml文件
    查看>>
    随手练——HDU 5015 矩阵快速幂
    查看>>
    malloc() & free()
    查看>>
    Linux 的 date 日期的使用
    查看>>
    Java变量类型,实例变量 与局部变量 静态变量
    查看>>
    mysql操作命令梳理(4)-中文乱码问题
    查看>>
    Python环境搭建(安装、验证与卸载)
    查看>>
    一个.NET通用JSON解析/构建类的实现(c#)
    查看>>
    详谈js面向对象 javascript oop,持续更新
    查看>>
    关于这次软件以及pda终端的培训
    查看>>
    jQuery上传插件Uploadify 3.2在.NET下的详细例子
    查看>>
    如何辨别一个程序员的水平高低?是靠发量吗?
    查看>>
    新手村之循环!循环!循环!
    查看>>
    线程安全问题
    查看>>
    linux的子进程调用exec( )系列函数
    查看>>
    MySQLdb & pymsql
    查看>>